home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -seriously_amiga- / shareware / graphics / agaiff / rexx / startup.agaiff < prev   
Text File  |  1998-01-05  |  680b  |  41 lines

  1. /* AREXX-Script > Startup.agaiff
  2.  *
  3.  * This one is called once when AGAiff is started, so you can easily
  4.  * put your preferences here... Well you *must*, since there is no
  5.  * prefs file!
  6.  *
  7.  */
  8.  
  9. address "AGAIFF_REXX"
  10. options results
  11.  
  12. /* Define some handy presets... */
  13.  
  14. clearpresets
  15.  
  16. sformat unpkedchunky file
  17. cformat nocols
  18. addpreset '"Unpacked Chunky"'
  19.  
  20. sformat copper dc
  21. cformat top 12bit
  22. addpreset '"12 Bit Copperlist"'
  23.  
  24. cformat 24bit0rgb
  25. addpreset '"24 Bit Copperlist"'
  26.  
  27. sformat rawi file
  28. cformat nocols 12bit
  29. addpreset '"RAW interleaved"'
  30.  
  31. /* My preferences... */
  32.  
  33. coords off
  34. globalnoshow
  35. dcsize 2
  36.  
  37. /* Show window if CX_POPUP is true */
  38.  
  39. STATUS 7
  40. if result = 1 then SHOWGUI
  41.